home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 June / Chip_2002-06_cd1.bin / zkuste / delphi / kolekce / d6 / rxlibsetup.exe / {app} / units / RXCCONST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  2002-02-19  |  1.4 KB  |  57 lines

  1. {*******************************************************}
  2. {                                                       }
  3. {         Delphi VCL Extensions (RX)                    }
  4. {                                                       }
  5. {         Copyright (c) 2001,2002 SGB Software          }
  6. {         Copyright (c) 1997, 1998 Fedor Koshevnikov,   }
  7. {                        Igor Pavluk and Serge Korolev  }
  8. {                                                       }
  9. {*******************************************************}
  10.  
  11. unit RXCConst;
  12.  
  13. { RX controls and components constants }
  14. {
  15.   Reserved diapasone
  16.   from MaxExtStrID - 36
  17.   to   MaxExtStrID - 84
  18. }
  19.  
  20. interface
  21.  
  22. const
  23. { The minimal VCL's used string ID is 61440. The custom IDs must be
  24.   less that above. }
  25.   MaxExtStrID = 61300;
  26.  
  27. const
  28.  
  29. { ToolEdit }
  30.  
  31.   SBrowse                = MaxExtStrID - 36;
  32.   SDefaultFilter         = MaxExtStrID - 37;
  33.  
  34. { PickDate }
  35.  
  36.   SDateDlgTitle          = MaxExtStrID - 38;
  37.   SNextYear              = MaxExtStrID - 39;
  38.   SNextMonth             = MaxExtStrID - 40;
  39.   SPrevYear              = MaxExtStrID - 41;
  40.   SPrevMonth             = MaxExtStrID - 42;
  41.  
  42. { VCLUtils }
  43.  
  44.   SNotImplemented        = MaxExtStrID - 43;
  45.   SFileNotExec           = MaxExtStrID - 44;
  46.   SLoadLibError          = MaxExtStrID - 45;
  47.   SDetails               = MaxExtStrID - 46;
  48.  
  49. implementation
  50.  
  51. {$IFDEF WIN32}
  52.  {$R *.R32}
  53. {$ELSE}
  54.  {$R *.R16}
  55. {$ENDIF}
  56.  
  57. end.